//Instructions: Create a function that takes an array of items, removes all duplicate items and returns a new array 
//in the same sequential order as the old array (minus duplicates).

using System;
using System.Linq;
//I looked this up after having done a similar exercise on CodeWars.  Hopefully I'll remember it this time!
public class Program 
{
    public static object[] RemoveDups(object[] str) 
    {
      return str.Distinct().ToArray();
    }
}
